(defn average
  "Finds the average of the numbers entered"
  [& all]
  (quot (apply + all) (count all)))